home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / db / Db_ReadEntry.c < prev    next >
C/C++ Source or Header  |  1989-06-16  |  2KB  |  98 lines

  1. /* 
  2.  * Db_ReadEntry.c --
  3.  *
  4.  *    Source code for the Db_ReadEntry procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_ReadEntry.c,v 1.5 89/06/15 22:45:23 douglis Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20.  
  21. #include <db.h>
  22. #include "dbInt.h"
  23.  
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * Db_ReadEntry --
  29.  *
  30.  *    Read a buffer from a specified location in the shared database.
  31.  *    This opens and locks the file, reads the data, and closes the
  32.  *    file.  The lock is polled if necessary.    
  33.  *
  34.  * Results:
  35.  *    -1 indicates an error, in which case errno indicates more details.
  36.  *    0 indicates success.
  37.  *
  38.  * Side effects:
  39.  *    None.
  40.  *
  41.  *----------------------------------------------------------------------
  42.  */
  43.  
  44. int
  45. Db_ReadEntry(file, buffer, index, size, lockHow)
  46.     char *file;
  47.     char *buffer;
  48.     int index;
  49.     int size;
  50.     Db_LockHow lockHow;
  51. {
  52.     int status;
  53.     int offset;
  54.     int streamID;
  55.     int bytesRead;
  56.     Db_Handle handle;
  57.     
  58.     streamID = open(file, O_RDONLY | O_CREAT, FILE_MODE);
  59.     if (streamID == -1) {
  60.     syslog(LOG_ERR, "Db_ReadEntry: error opening file %s: %s.\n", file,
  61.            strerror(errno));
  62.     return(streamID);
  63.     }
  64.  
  65.     offset = index * size;
  66.     status = lseek(streamID, (long) offset, L_SET);
  67.     if (status == -1) {
  68.     return(status);
  69.     }
  70.     /*
  71.      * Fake a Db_Handle for DbLockDesc.
  72.      */
  73.     handle.streamID = streamID;
  74.     handle.lockHow = lockHow;
  75.     handle.lockType = LOCK_SH;
  76. #ifndef CLEAN
  77.     handle.fileName = file;
  78. #endif /* CLEAN */
  79.     status = DbLockDesc(&handle);
  80.     if (status == -1) {
  81.     return(status);
  82.     }
  83.     
  84.     bytesRead = read(streamID, buffer, size);
  85.     if (bytesRead == -1) {
  86.     status = -1;
  87.     } else if (bytesRead != size) {
  88.     status = -1;
  89.     errno = 0;
  90.     } else {
  91.     status = 0;
  92.     }
  93.     (void) flock(streamID, LOCK_SH | LOCK_UN);
  94.     (void) close(streamID);
  95.  
  96.     return(status);
  97. }
  98.